home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1995 #2 / Amiga Plus CD - 1995 - No. 2.iso / startrek / startrek-agatron / makeassigns_&_start < prev    next >
Text File  |  1995-04-11  |  1KB  |  64 lines

  1. ; Änderung für CD-Version Anfang
  2.  
  3. assign STData: ""
  4. assign STGame: ""
  5.  
  6. ; Änderung für CD-Version Ende
  7.  
  8. ; AGAtron Star Trek Game
  9. ;    Startup-Sequence
  10. ; Please leave it as it is
  11. ; PatchNTSC
  12. c/Cls
  13. c/Bluestripes
  14. ; FastMemFirst
  15.  
  16. Echo "*N*E[1m                        AGAtron PD presents:"
  17. Echo "*E[3m                       *E[4m  The Star Trek Game  *E[0m*N"
  18. Type s/ReadMe
  19.  
  20. Ask " Wanna read the Docs (in German) ? (Y/N):"
  21. If WARN
  22.  more STDATA:StarTrek.DOC
  23. EndIf
  24.  
  25. Ask " Wanna see the Intro-Anim ? (Y/N):"
  26. If WARN
  27.  c/ShowAnim >Nil: TrekGame.preanim +4
  28. EndIf
  29.  
  30. c/CheckMem 1500000 
  31. If NOT WARN
  32.  Ask " Enough Memory - Copy DataDisk to RAM: ? (Y/N):"
  33.  If WARN
  34.   Echo "*N Copying Datadisk to RAM: ... *N"
  35.   Copy STDATA: ram: all quiet
  36. ; Änderung für CD-Version Anfang
  37. ; Ask " Please Remove DataDisk, then press <Return>!"
  38.   Assign STDATA: remove
  39. ; Änderung für CD-Version Ende
  40.   Assign STDATA: RAM:
  41.  EndIf
  42.  Echo "*N Starting the Game ..."
  43.  FailAt 300000000  ; ahem...
  44.  StarTrek
  45.  FailAt 20
  46. Else
  47.  FailAt 300000000
  48.  c/CheckMem 600000
  49.  If WARN
  50.   Echo "*N 512K Memory only - Starting Special Version with less Sounds."
  51.   StarTrek512
  52.  Else
  53.   Echo "*N 1MB Memory - Starting the Game ..."
  54.   StarTrek
  55.  EndIf
  56.  FailAt 20
  57. EndIf
  58.  
  59. Type s/Bye
  60.  
  61. :c/PPShow Enterprise.pic
  62.  
  63. ; End of Script
  64.